home *** CD-ROM | disk | FTP | other *** search
/ Adobe Graphics & Publishing SDK 1996 December / Adobe Graphics & Publishing SDK 1996 December.iso / mac / PageMaker 6.5 SDK Mac / SourceCode / PageMakerClassLibrary / Queries / PGetPrivateString.h < prev    next >
C/C++ Source or Header  |  1996-07-12  |  777b  |  37 lines

  1. /*
  2.  *--- PGetPrivateString.h -------------------------------------------------
  3.  * Copyright (c) 1995-96 Adobe Systems Incorporated.  All rights reserved.
  4.  * Created on Thu, Oct 12, 1995 @ 10:43 PM by Paul Ferguson.
  5.  *
  6.  * Description:
  7.  *-------------------------------------------------------------------------
  8.  */
  9. #ifndef __PGetPrivateString__
  10. #define __PGetPrivateString__
  11.  
  12. #include "PHandleQuery.h"
  13.  
  14. class PGetPrivateString : public PHandleQuery
  15. {
  16.  
  17. public:
  18.  
  19.     PGetPrivateString
  20.       (    const char * sDeveloperID,
  21.         const char * sPluginID,
  22.         short cTargetClass,
  23.         unsigned long nTypeFlag,
  24.         unsigned long nTargetID );
  25.  
  26.     short            cPlatform;
  27.     const char *    sPrivateString;
  28.  
  29. private:
  30.  
  31.     PGetPrivateString();
  32. };
  33.  
  34. #endif
  35.  
  36. // end of PGetPrivateString.h
  37.